summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-31 02:13:48 +0100
committerLiam <byteslice@airmail.cc>2024-01-31 02:13:48 +0100
commit817d916233adcfb26814fde677e71d9825ce614c (patch)
tree4c598c527d2c7d89136ffa9b7453cca90f1b8de5
parentam: stop emulation when all applets are closed (diff)
downloadyuzu-817d916233adcfb26814fde677e71d9825ce614c.tar
yuzu-817d916233adcfb26814fde677e71d9825ce614c.tar.gz
yuzu-817d916233adcfb26814fde677e71d9825ce614c.tar.bz2
yuzu-817d916233adcfb26814fde677e71d9825ce614c.tar.lz
yuzu-817d916233adcfb26814fde677e71d9825ce614c.tar.xz
yuzu-817d916233adcfb26814fde677e71d9825ce614c.tar.zst
yuzu-817d916233adcfb26814fde677e71d9825ce614c.zip
-rw-r--r--src/core/hle/service/am/frontend/applet_error.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/frontend/applet_error.cpp b/src/core/hle/service/am/frontend/applet_error.cpp
index d6db345b6..b97a5f3ea 100644
--- a/src/core/hle/service/am/frontend/applet_error.cpp
+++ b/src/core/hle/service/am/frontend/applet_error.cpp
@@ -207,7 +207,7 @@ void Error::Execute() {
void Error::DisplayCompleted() {
complete = true;
- PushOutData(std::make_shared<IStorage>(system, std::vector<u8>()));
+ PushOutData(std::make_shared<IStorage>(system, std::vector<u8>(0x1000)));
Exit();
}